home *** CD-ROM | disk | FTP | other *** search
/ System Booster / System Booster.iso / Archives / GNU / gawk_2_15_5.lha / gawk-2.15.5 / awk.hch < prev    next >
Text File  |  1995-01-20  |  895b  |  61 lines

  1. Changes for AWK.H by Andreas Scherer, January 20, 1995.
  2.  
  3. @x l.35
  4. #include <varargs.h>
  5. @y
  6. #include <stdarg.h>
  7. @z
  8.  
  9. @x l.117
  10. #include <malloc.h>
  11. #else
  12. extern char *alloca();
  13. @y
  14. #include <malloc.h>
  15. #else
  16. extern char *alloca(unsigned int);
  17. @z
  18.  
  19. @x l.344
  20.                 struct exp_node *(*pptr) ();
  21. @y
  22.                 struct exp_node *(*pptr) (struct exp_node *);
  23. @z
  24.  
  25. @x l.368
  26.             char idx;
  27. @y
  28.             signed char idx;
  29. @z
  30.  
  31. @x l.472
  32. typedef void (*Func_ptr)();
  33. @y
  34. typedef void (*Func_ptr)(void);
  35. @z
  36.  
  37. @x l.531
  38. extern char *OFS;
  39. @y
  40. #ifdef __SASC /* So ein Schwachsinn */
  41. #undef OFS
  42. #endif
  43. extern char *OFS;
  44. @z
  45.  
  46. @x l.728
  47. extern void err P((const char *s, const char *emsg, va_list argp));
  48. @y
  49. extern void err P((const char *s, const char *emsg, ...));
  50. @z
  51.  
  52. @x l.734
  53. extern void msg ();
  54. extern void warning ();
  55. extern void fatal ();
  56. @y
  57. extern void msg (char *, ...);
  58. extern void warning (char *, ...);
  59. extern void fatal (char *, ...);
  60. @z
  61.